home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / bitcat / ab.frm next >
Text File  |  1995-05-08  |  2KB  |  78 lines

  1. VERSION 2.00
  2. Begin Form AB 
  3.    BackColor       =   &H00808080&
  4.    BorderStyle     =   3  'Fixed Double
  5.    ClientHeight    =   1080
  6.    ClientLeft      =   3720
  7.    ClientTop       =   3315
  8.    ClientWidth     =   2535
  9.    ControlBox      =   0   'False
  10.    ForeColor       =   &H00000000&
  11.    Height          =   1485
  12.    Left            =   3660
  13.    LinkMode        =   1  'Source
  14.    LinkTopic       =   "Form1"
  15.    MaxButton       =   0   'False
  16.    MinButton       =   0   'False
  17.    ScaleHeight     =   1080
  18.    ScaleWidth      =   2535
  19.    Top             =   2970
  20.    Width           =   2655
  21.    Begin CommandButton Command1 
  22.       Caption         =   "&OK"
  23.       FontBold        =   0   'False
  24.       FontItalic      =   0   'False
  25.       FontName        =   "MS Sans Serif"
  26.       FontSize        =   8.25
  27.       FontStrikethru  =   0   'False
  28.       FontUnderline   =   0   'False
  29.       Height          =   360
  30.       Left            =   135
  31.       TabIndex        =   2
  32.       Top             =   630
  33.       Width           =   2265
  34.    End
  35.    Begin Label Label2 
  36.       BackColor       =   &H00808080&
  37.       Caption         =   "Written By: Sean Bishop"
  38.       FontBold        =   0   'False
  39.       FontItalic      =   0   'False
  40.       FontName        =   "MS Sans Serif"
  41.       FontSize        =   8.25
  42.       FontStrikethru  =   0   'False
  43.       FontUnderline   =   0   'False
  44.       ForeColor       =   &H00FFFFFF&
  45.       Height          =   240
  46.       Left            =   405
  47.       TabIndex        =   1
  48.       Top             =   330
  49.       Width           =   1785
  50.    End
  51.    Begin Label Label1 
  52.       BackColor       =   &H00808080&
  53.       Caption         =   "Bitmap Catalog"
  54.       FontBold        =   0   'False
  55.       FontItalic      =   0   'False
  56.       FontName        =   "MS Sans Serif"
  57.       FontSize        =   8.25
  58.       FontStrikethru  =   0   'False
  59.       FontUnderline   =   0   'False
  60.       ForeColor       =   &H00FFFFFF&
  61.       Height          =   210
  62.       Left            =   750
  63.       TabIndex        =   0
  64.       Top             =   120
  65.       Width           =   1140
  66.    End
  67. End
  68. Sub Command1_Click ()
  69. AB.Hide
  70. End Sub
  71.  
  72. Sub Form_Click ()
  73. AB.Top = (Screen.Height / 2) - (AB.Height / 2)
  74. AB.Left = (Screen.Width / 2) - (AB.Width / 2)
  75.  
  76. End Sub
  77.  
  78.